home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / samba.idb / usr / samba / src / source / clitar.h.z / clitar.h
Encoding:
C/C++ Source or Header  |  1998-10-28  |  287 b   |  18 lines

  1.  
  2. #define TBLOCK 512
  3. #define NAMSIZ 100
  4. union hblock {
  5.   char dummy[TBLOCK];
  6.   struct header {
  7.     char name[NAMSIZ];
  8.     char mode[8];
  9.     char uid[8];
  10.     char gid[8];
  11.     char size[12];
  12.     char mtime[12];
  13.     char chksum[8];
  14.     char linkflag;
  15.     char linkname[NAMSIZ];
  16.   } dbuf;
  17. };
  18.